home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / tclX6.4c / dist / tclsrc / Makefile < prev    next >
Encoding:
Makefile  |  1992-11-07  |  1.7 KB  |  51 lines

  1. #
  2. # Makefile --
  3. #
  4. # Makefile for Extended Tcl package library.
  5. #------------------------------------------------------------------------------
  6. # Copyright 1992 Karl Lehenbauer and Mark Diekhans.
  7. #
  8. # Permission to use, copy, modify, and distribute this software and its
  9. # documentation for any purpose and without fee is hereby granted, provided
  10. # that the above copyright notice appear in all copies.  Karl Lehenbauer and
  11. # Mark Diekhans make no representations about the suitability of this
  12. # software for any purpose.  It is provided "as is" without express or
  13. # implied warranty.
  14. #------------------------------------------------------------------------------
  15. # $Id: Makefile,v 2.0 1992/10/16 04:51:50 markd Rel $
  16. #------------------------------------------------------------------------------
  17. #
  18.  
  19. include ../Config.mk
  20. include ../config/$(TCL_CONFIG_FILE)
  21. SHELL=/bin/sh
  22.  
  23. #------------------------------------------------------------------------------
  24.  
  25. TCL.TLIB=../tcllib/tcl.tlib
  26. TCL.TNDX=../tcllib/tcl.tndx
  27.  
  28. #------------------------------------------------------------------------------
  29.  
  30. TCL_SRCS=arrayprocs.tcl   asgnfields.tcl   edprocs.tcl     forfile.tcl    \
  31.          forrecur.tcl     globrecur.tcl    help.tcl        packages.tcl   \
  32.          pushd.tcl        setfuncs.tcl     showprocs.tcl   stringfile.tcl \
  33.          compat.tcl       convlib.tcl      profrep.tcl
  34.  
  35. #------------------------------------------------------------------------------
  36.  
  37. all: made.tmp
  38.  
  39. made.tmp: $(TCL.TLIB)
  40.     touch made.tmp
  41.  
  42. $(TCL.TLIB): $(TCL_SRCS)
  43.      cat $(TCL_SRCS) | egrep -v '^#$$|^#  *|^#-|^#=|^  *#' > $@
  44.  
  45. #------------------------------------------------------------------------------
  46.  
  47. clean:
  48.     -rm -f made.tmp $(TCL.TLIB) $(TCL.TNDX)
  49.  
  50.